       /*
		tx_thread_sleep(5000);
		static NaSnmpUsmEntry_t a;
		static NaSnmpVacmSecurityToGroupEntry_t d;
		static NaSnmpVacmViewTreeFamilyEntry_t e;
		static NaSnmpVacmAccessEntry_t c;
		
		memcpy(a.authKeyChange,"longkey1",8);
		memcpy(a.privKeyChange,"longkey1",8);
		a.authKeyChangeLength = 8;
		a.privKeyChangeLength = 8;
		memcpy(a.name,"nicholas",8);
		memcpy(a.securityName,"nicholas",8);
		a.securityNameLength = 8;
		a.nameLength = 8;
		a.userStatus = NA_SNMP_ROW_STATUS_ACTIVE;
		a.storageType = NA_SNMP_NONVOLATILE;
		a.authProtocol = NA_SNMP_HMACMD5_AUTH_PROTOCOL;
		a.privProtocol = NA_SNMP_DES_PRIV_PROTOCOL;
		
		d.securityModel = NA_SNMP_VACM_SECURITY_MODEL_USM;
		memcpy(d.securityName,"nicholas",8);
		d.securityNameLength = 8;
		memcpy(d.groupName,"Admin",5);
		d.groupNameLength = 5;
		
		e.type = NA_SNMP_NONVOLATILE;
		memcpy(e.subtree,".0",2);
		e.subtreeLength = 2;
		memcpy(e.name,"All",3);
		e.nameLength = 3;
		memcpy(e.mask,"",0);
		e.maskLength = 0;
		
		c.contextMatch = NA_SNMP_VACM_ACCESS_CONTEXT_MATCH_EXACT;
		memcpy(c.contextPrefix,"",0);
		c.contextPrefixLength = 0;
		memcpy(c.groupName,"Admin",5);
		c.groupNameLength = 5;
		memcpy(c.notifyView,"notify view",11);
		c.notifyViewLength = 11;
		memcpy(c.writeView,"allmib",6);
		c.writeViewLength = 6;
		memcpy(c.readView,"allmib",6);
		c.readViewLength = 6;
		c.securityModel = NA_SNMP_VACM_SECURITY_MODEL_USM;
		c.securityLevel = NA_SNMP_VACM_SECURITY_LEVEL_AUTH_PRIV;
	
		NaStatus skh;
		skh = naSnmpInsertUserEntry(&a);
		if (skh != NA_SUCCESS)
		{
			printf ("Snmp Insert User Failed. Error [%x].", skh);
			goto exit;
		}
		skh = naSnmpInsertS2GEntry(&d);
		if (skh != NA_SUCCESS)
		{
			printf ("Snmp Insert S2G Entry Failed. Error [%d].", skh);
			goto exit;
		}
		skh = naSnmpInsertVtfEntry(&e);
		if (skh != NA_SUCCESS)
		{
			printf ("Snmp Insert VTF Entry Failed. Error [%d].", skh);
			goto exit;
		}
		skh = naSnmpInsertVacmAccessEntry(&c);
		if (skh != NA_SUCCESS)
		{
			printf ("Snmp Insert VACM Access Entry Failed. Error [%d].", skh);
			goto exit;
		}*/